Fix formatting of example blocks With the new stylesheet example blocks (delimited with ====) are rendered as rather intrusive boxes with large padding in yellow and grey. This patch replaces the example blocks with simple code blocks (delimited with ----) that better match the overall style of the documentation. Change-Id: Id95387cdb153332c2066e2d5e378697647dbca52 Signed-off-by: Michael Ochmann <michael.ochmann@sap.com>
diff --git a/Documentation/cmd-ls-projects.txt b/Documentation/cmd-ls-projects.txt index 3dc8ff7..e2e71ff 100644 --- a/Documentation/cmd-ls-projects.txt +++ b/Documentation/cmd-ls-projects.txt
@@ -114,7 +114,7 @@ == EXAMPLES List visible projects: -===== +---- $ ssh -p 29418 review.example.com gerrit ls-projects platform/manifest tools/gerrit @@ -128,16 +128,16 @@ $ curl http://review.example.com/projects/tools/ tools/gerrit tools/gwtorm -===== +---- Clone any project visible to the user: -==== +---- for p in `ssh -p 29418 review.example.com gerrit ls-projects` do mkdir -p `dirname "$p"` git clone --bare "ssh://review.example.com:29418/$p.git" "$p.git" done -==== +---- == SEE ALSO